home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60rt.lha / Vim / vim60 / ftplugin / kwt.vim < prev    next >
Encoding:
Text File  |  2001-09-17  |  596 b   |  21 lines

  1. " Vim filetype plugin file
  2. " Language:    Kimwitu++
  3. " Maintainer:    Michael Piefel <piefel@informatik.hu-berlin.de>
  4. " Last Change:    16 August 2001
  5.  
  6. " Behaves almost like C++
  7. runtime! ftplugin/cpp.vim ftplugin/cpp_*.vim ftplugin/cpp/*.vim
  8.  
  9. set cpo-=C
  10.  
  11. " Limit the browser to related files
  12. if has("gui_win32") && !exists("b:browsefilter")
  13.     let b:browsefilter = "Kimwitu/Kimwitu++ Files (*.k)\t*.k\n" .
  14.         \ "Lex/Flex Files (*.l)\t*.l\n" .
  15.         \ "Yacc/Bison Files (*.y)\t*.y\n" .
  16.         \ "All Files (*.*)\t*.*\n"
  17. endif
  18.  
  19. " Set the errorformat for the Kimwitu++ compiler
  20. set efm+=kc%.%#:\ error\ at\ %f:%l:\ %m
  21.